home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Presentations / Presentations ’96 / Sessions ’96 / TCL and New Technologies / QDGX ƒ / Source / main.cp < prev    next >
Encoding:
Text File  |  1995-12-13  |  503 b   |  27 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  main.cp
  3.  
  4.                 Main Program
  5.     
  6.     Copyright © 1995 My Software Inc. All rights reserved.
  7.  
  8.     Generated by Visual Architect™ 4:16 PM Wed, Dec 13, 1995
  9.  
  10.  ******************************************************************************/
  11.  
  12.  
  13. #include "CApp.h"
  14. #include <TCLUtilities.h>
  15.  
  16. void main()
  17.  
  18. {
  19.     SetMinimumStack(32768);
  20.  
  21.     CApp    *application = TCL_NEW(CApp,());
  22.  
  23.     application->ICApp();
  24.     application->Run();
  25.     application->Exit();
  26. }
  27.